//--------------------------------------------------- // Purpose: Program to convert test scores // between 0..100 into letter grades // Author: John Gauch //--------------------------------------------------- #include #include using namespace std; int main() { // Local variable declarations // Read test score // Calculate grade // Print output return 0; }